home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / gtk-2.0 / gtk / gtkmessagedialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-04-25  |  4.2 KB  |  114 lines

  1. /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 2 -*- */
  2. /* GTK - The GIMP Toolkit
  3.  * Copyright (C) 2000 Red Hat, Inc.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the
  17.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18.  * Boston, MA 02111-1307, USA.
  19.  */
  20.  
  21. /*
  22.  * Modified by the GTK+ Team and others 1997-2003.  See the AUTHORS
  23.  * file for a list of people on the GTK+ Team.  See the ChangeLog
  24.  * files for a list of changes.  These files are distributed with
  25.  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
  26.  */
  27.  
  28. #ifndef __GTK_MESSAGE_DIALOG_H__
  29. #define __GTK_MESSAGE_DIALOG_H__
  30.  
  31. #include <gtk/gtkdialog.h>
  32.  
  33. G_BEGIN_DECLS
  34.  
  35. typedef enum
  36. {
  37.   GTK_MESSAGE_INFO,
  38.   GTK_MESSAGE_WARNING,
  39.   GTK_MESSAGE_QUESTION,
  40.   GTK_MESSAGE_ERROR
  41. } GtkMessageType;
  42.  
  43. typedef enum
  44. {
  45.   GTK_BUTTONS_NONE,
  46.   GTK_BUTTONS_OK,
  47.   GTK_BUTTONS_CLOSE,
  48.   GTK_BUTTONS_CANCEL,
  49.   GTK_BUTTONS_YES_NO,
  50.   GTK_BUTTONS_OK_CANCEL
  51. } GtkButtonsType;
  52.  
  53. #define GTK_TYPE_MESSAGE_DIALOG                  (gtk_message_dialog_get_type ())
  54. #define GTK_MESSAGE_DIALOG(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialog))
  55. #define GTK_MESSAGE_DIALOG_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
  56. #define GTK_IS_MESSAGE_DIALOG(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MESSAGE_DIALOG))
  57. #define GTK_IS_MESSAGE_DIALOG_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MESSAGE_DIALOG))
  58. #define GTK_MESSAGE_DIALOG_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
  59.  
  60. typedef struct _GtkMessageDialog        GtkMessageDialog;
  61. typedef struct _GtkMessageDialogClass   GtkMessageDialogClass;
  62.  
  63. struct _GtkMessageDialog
  64. {
  65.   /*< private >*/
  66.   
  67.   GtkDialog parent_instance;
  68.   
  69.   GtkWidget *image;
  70.   GtkWidget *label;
  71. };
  72.  
  73. struct _GtkMessageDialogClass
  74. {
  75.   GtkDialogClass parent_class;
  76.  
  77.   /* Padding for future expansion */
  78.   void (*_gtk_reserved1) (void);
  79.   void (*_gtk_reserved2) (void);
  80.   void (*_gtk_reserved3) (void);
  81.   void (*_gtk_reserved4) (void);
  82. };
  83.  
  84. GType      gtk_message_dialog_get_type (void) G_GNUC_CONST;
  85.  
  86. GtkWidget* gtk_message_dialog_new      (GtkWindow      *parent,
  87.                                         GtkDialogFlags  flags,
  88.                                         GtkMessageType  type,
  89.                                         GtkButtonsType  buttons,
  90.                                         const gchar    *message_format,
  91.                                         ...) G_GNUC_PRINTF (5, 6);
  92.  
  93. GtkWidget* gtk_message_dialog_new_with_markup   (GtkWindow      *parent,
  94.                                                  GtkDialogFlags  flags,
  95.                                                  GtkMessageType  type,
  96.                                                  GtkButtonsType  buttons,
  97.                                                  const gchar    *message_format,
  98.                                                  ...) G_GNUC_PRINTF (5, 6);
  99.  
  100. void       gtk_message_dialog_set_markup  (GtkMessageDialog *message_dialog,
  101.                                            const gchar      *str);
  102.  
  103. void       gtk_message_dialog_format_secondary_text (GtkMessageDialog *message_dialog,
  104.                                                      const gchar      *message_format,
  105.                                                      ...) G_GNUC_PRINTF (2, 3);
  106.  
  107. void       gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message_dialog,
  108.                                                        const gchar      *message_format,
  109.                                                        ...) G_GNUC_PRINTF (2, 3);
  110.  
  111. G_END_DECLS
  112.  
  113. #endif /* __GTK_MESSAGE_DIALOG_H__ */
  114.